Micron Document
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
| SparkN0de-git | SparkN0de |
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------


Commit cf5bbb3c48596b7277bcd0871577994a17c62d2e


Parents : 9b91c9a
Author : Ivan <e46112d44649266d71fe2193e00a4710>
Signature : T66BB85Valid, signed by author
Date : 2026-07-25T16:14:58-05:00

fix: ensure executable permission for the frozen runtime script

Changes

2 files changed, 4 insertions(+), 0 deletions(-)


Diff

diff --git a/meshchatx.rsm b/meshchatx.rsm
index f2d9c96f..521a6744 100644
Binary files a/meshchatx.rsm and b/meshchatx.rsm differ

diff --git a/scripts/ci/github-verify-frozen-runtime.sh b/scripts/ci/github-verify-frozen-runtime.sh
index 9c653d71..e37beb98 100644
--- a/scripts/ci/github-verify-frozen-runtime.sh
+++ b/scripts/ci/github-verify-frozen-runtime.sh
@@ -32,6 +32,10 @@ if [[ -z "${EXE}" ]]; then
exit 1
fi
+if [[ ! -x "${EXE}" ]]; then
+ chmod +x "${EXE}"
+fi
+
if [[ ! -d "${BUILD_EXE}/lib/email" ]]; then
echo "frozen runtime verify: lib/email missing (stdlib email must not live only in library.zip)" >&2
exit 1


──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────